home *** CD-ROM | disk | FTP | other *** search
/ Aminet 49 / Aminet 49 (2002)(GTI - Schatztruhe)[!][Jun 2002].iso / Aminet / util / libs / muitoolkit-src.lha / muitoolkit-2.1_src / mt_includes.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-09-16  |  947 b   |  49 lines

  1.  
  2. /*
  3. $Id: mt_includes.h,v 1.3 1999/11/27 17:25:46 carlos Exp $.
  4. */
  5.  
  6. #define __USE_SYSBASE        // perhaps only recognized by SAS/C
  7.  
  8. #include <exec/types.h>
  9. #include <exec/memory.h>
  10. #include <exec/libraries.h>
  11. #include <exec/execbase.h>
  12. #include <exec/resident.h>
  13. #include <exec/initializers.h>
  14.  
  15. #include <stdio.h>
  16. #include <string.h>
  17.  
  18. #include <proto/exec.h>
  19. #include <proto/intuition.h>
  20. #include <proto/utility.h>
  21. #include <proto/dos.h>
  22. //#include <proto/locale.h>
  23. #include <intuition/intuition.h>
  24. #include <libraries/mui.h>
  25. #include <mui/mui.h>
  26. #include <mui/muiundoc.h>
  27. #include <proto/muimaster.h>
  28.  
  29. #include "mt_revision.h"
  30.  
  31. #include <libraries/muitoolkit.h>
  32. #include <libraries/muitoolkitbase.h>
  33.  
  34.  
  35. #ifndef COMPILER_H
  36. #define COMPILER_H
  37.  
  38. #define REG(r)     register __ ## r
  39. #define SAVEDS     __saveds
  40. #define ASM        __asm
  41. #define REGARGS    __regargs
  42. #define STDARGS    __stdargs
  43. #define ALIGNED    __aligned
  44.  
  45. #endif /* COMPILER_H */
  46.  
  47.  
  48.  
  49.